home *** CD-ROM | disk | FTP | other *** search
/ Experimental BBS Explossion 3 / Experimental BBS Explossion III.iso / vbasic / gticon.zip / GTICON.TXT < prev    next >
Text File  |  1993-11-06  |  2KB  |  48 lines

  1.  
  2. GTICON.DLL -- Copyright (c) 1993 George R. Torralba
  3. ===================================================
  4.  
  5. GTICON.DLL is a VisualBasic 3.0 DLL that contains the two functions:
  6.  
  7.   o AssignDragIcon  - Given a handle to an icon (hIcon) and the name of a
  8.                       control (having a DragIcon property), this function
  9.                       assigns the icon to the control's DragIcon property.
  10.  
  11.                       This functions returns True if it's successful, else
  12.                       it returns False.
  13.  
  14.   o GetDragIcon     - Given a control with an icon assigned to the DragIcon 
  15.                       property this function copies the icon and assigns
  16.                       it a handle (hIcon).
  17.  
  18.                       This functions returns an hIcon handle, else it
  19.                       returns 0 (zero).
  20.  
  21.  
  22. The functions are declared as (DF = Declare Function):
  23.  
  24.   DF AssignDragIcon% Lib "GTICON.DLL" (Ctrl as Control, Byval hIcon%)
  25.   DF GetDragIcon% Lib "GTICON.DLL" (Ctrl as Control)
  26.  
  27. The following files are included in the package:
  28.  
  29.    GTICON.DLL   The DLL itself.
  30.    GTICON.EXE   Example project file.
  31.    GTICON.FRM   "
  32.    GTICON.FRX   "
  33.    GTICON.ICO   "
  34.    SETUP1.ICO   "
  35.    GTICON.MAK   "
  36.  
  37. This utility is released as freeware and is NOT public domain.  The author
  38. can be reached at:
  39.  
  40.     Email: grtorlba@seattleu.edu
  41.   US Mail: George R. Torralba
  42.            8728 Phinney Ave. N #8
  43.            Seattle, WA  98103
  44.            (206) 781-7622
  45.  
  46.  
  47. // End of GTICON.TXT
  48.